147465d449db52b63f1dfeea14057ec0d12d69d6,Common/Frameworks/ERDirectToWeb/Sources/er/directtoweb/ERD2WListPage.java,ERD2WListPage,isEntityInspectable,#,218
Before Change
}
public boolean isEntityInspectable() {
Integer isEntityInspectable=(Integer)d2wContext().valueForKey("isEntityInspectable");
return isEntityReadOnly() && (isEntityInspectable!=null && isEntityInspectable.intValue()!=0);
}
public WOComponent deleteObjectAction() {
After Change
}
public boolean isEntityInspectable() {
return ERXValueUtilities.booleanValueWithDefault(d2wContext().valueForKey("isEntityInspectable"), isEntityReadOnly());
// return isEntityReadOnly() && (isEntityInspectable!=null && isEntityInspectable.intValue()!=0);
}